home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / jazlib.arc / JZWNDASN.C < prev    next >
Text File  |  1988-12-18  |  423b  |  17 lines

  1. jzwndasn(fwindow,frow,fcol,fattr,fnum,fy1,fx1,fy2,fx2);
  2. TWINDOW *fwindow;
  3. char frow,fcol;
  4. unsigned char fattr;
  5. char fnum,fy1,fx1,fy2,fx2;
  6. {
  7.   fwindow->buf = (int *) malloc(((fx2 - fx1 + 1) * (fy2 - fy1 + 1)) << 1);
  8.   fwindow->row = frow;
  9.   fwindow->col = fcol;
  10.   fwindow->attr = fattr;
  11.   fwindow->number = fnum;
  12.   fwindow->row1 = fy1;
  13.   fwindow->col1 = fx1;
  14.   fwindow->row2 = fy2;
  15.   fwindow->col2 = fx2;
  16. }
  17.